home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-15 | 1018 b | 39 lines | [TEXT/CWIE] |
- // ===========================================================================
- // GraphTestApp.h Derived heavily from the Dashboard Starter
- // ===========================================================================
-
- #pragma once
-
- #include <LApplication.h>
- #include "studenttest.hpp"
- #include "temperaturetest.hpp"
-
- class ColumnGraphWindow;
- class BarGraphWindow;
- class StackedBarGraphWindow;
-
- class LWindow;
- class GraphTestApp : public LApplication {
- public:
- GraphTestApp();
- virtual ~GraphTestApp();
-
- virtual Boolean ObeyCommand(CommandT inCommand, void *ioParam = nil);
- virtual void FindCommandStatus(CommandT inCommand,
- Boolean &outEnabled, Boolean &outUsesMark,
- Char16 &outMark, Str255 outName);
- protected:
- void DoPageSetup();
- void PrintAll();
-
- dbConnect_ctree theDB;
- dbStudent Students;
- dbTemperature Temperatures;
-
- ColumnGraphWindow* mCWindow;
- BarGraphWindow* mBWindow;
- StackedBarGraphWindow* mSBWindow2;
- // StackedBarGraphWindow* mSBWindow;
- };
-
-